home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / DJINC106.ARJ / STAT.H < prev    next >
C/C++ Source or Header  |  1992-03-09  |  2KB  |  56 lines

  1. /* This is file STAT.H */
  2. /*
  3. ** Copyright (C) 1991 DJ Delorie, 24 Kirsten Ave, Rochester NH 03867-2954
  4. **
  5. ** This file is distributed under the terms listed in the document
  6. ** "copying.dj", available from DJ Delorie at the address above.
  7. ** A copy of "copying.dj" should accompany this file; if not, a copy
  8. ** should be available from where this file was obtained.  This file
  9. ** may not be distributed without a verbatim copy of "copying.dj".
  10. **
  11. ** This file is distributed WITHOUT ANY WARRANTY; without even the implied
  12. ** warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  13. */
  14.  
  15. #ifndef _STAT_H_
  16. #define _STAT_H_
  17.  
  18. struct  stat {
  19.         short st_dev;
  20.         short st_ino;
  21.         unsigned short st_mode;
  22.         short st_nlink;
  23.         short st_uid;
  24.         short st_gid;
  25.         short st_rdev;
  26.         short st_align_for_word32;
  27.         long  st_size;
  28.         long  st_atime;
  29.         long  st_mtime;
  30.         long  st_ctime;
  31.         long  st_blksize;
  32. };
  33.  
  34. #define S_IFMT  0xF000  /* file type mask */
  35. #define S_IFDIR 0x4000  /* directory */
  36. #define S_IFIFO 0x1000  /* FIFO special */
  37. #define S_IFCHR 0x2000  /* character special */
  38. #define S_IFBLK 0x3000  /* block special */
  39. #define S_IFREG 0x8000  /* or just 0x0000, regular */
  40. #define S_IREAD 0x0100  /* owner may read */
  41. #define S_IWRITE 0x0080 /* owner may write */
  42. #define S_IEXEC 0x0040  /* owner may execute <directory search> */
  43.  
  44. #define S_ISDIR(x)      ((x) & S_IFDIR)
  45.  
  46. #ifdef __cplusplus
  47. extern "C" {
  48. #endif
  49. int stat(const char *, struct stat *);
  50. int fstat(int, struct stat *);
  51. #ifdef __cplusplus
  52. }
  53. #endif
  54.  
  55. #endif
  56.